feat(seer): Render chart markdown embeds - #120969
Open
gricha wants to merge 16 commits into
Open
Conversation
Add the chart markdown extension schema and render validated line, area, and bar visualizations with Sentry chart components.
Contributor
Story previewsPreview the stories changed in this PR on the Vercel deployment: Preview deployment: https://sentry-46vpqel4o.sentry.dev |
Contributor
📊 Type Coverage Diff
🔍 4 new type safety issues introducedNon-null assertions (
This is informational only and does not block the PR. |
Require unambiguous time-axis values, document heatmap and wheel constraints, use Scraps for chart headers, and exercise every chart adapter through the shared BaseChart boundary.
gricha
marked this pull request as ready for review
August 1, 2026 11:30
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d8e3d63. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Register a
chartblock embed for Seer responses and render validated line, area, bar, heatmap, and wheel visualizations with Sentry's existing ECharts infrastructure. The schema supports time or category axes, common display units, multiple series, and safe tooltip formatting; the generated backend widget catalog keeps the capability advertised to Seer in sync.Heatmaps use the dashboard color palette and map each series to a row of cells. Wheels map one category series to a donut chart, keeping both additions on the same compact markdown-extension schema rather than introducing widget-specific payloads.
This is the Sentry half of the chart embed flow. The paired Seer change adds the typed Code Mode rendering helper and its discovery artifacts: https://github.com/getsentry/seer/pull/7571